DataCollection | ComponentOne
C1.DataCollection Assembly / C1.DataCollection Namespace / C1DataCollectionList<T> Class / InsertRange Method
The index where the items are inserted.
The inserted items.

In This Topic
    InsertRange Method (C1DataCollectionList<T>)
    In This Topic
    Inserts a range of items in the collection.
    Syntax
    'Declaration
     
    Public Sub InsertRange( _
       ByVal startingIndex As Integer, _
       ByVal items As IEnumerable(Of T) _
    ) 
    public void InsertRange( 
       int startingIndex,
       IEnumerable<T> items
    )

    Parameters

    startingIndex
    The index where the items are inserted.
    items
    The inserted items.
    See Also